home *** CD-ROM | disk | FTP | other *** search
/ CD Loisirs 24 / CDL24.iso / LAPLACE / IDEM.DXR / Making Of_1_Hot MakOf.ls < prev    next >
Encoding:
Text File  |  1996-10-10  |  378 b   |  22 lines

  1. on exitFrame
  2.   set ParLa to the frame
  3.   set Y to 0
  4.   repeat with x = 6 to 8
  5.     if rollOver(x) then
  6.       set Y to x
  7.     end if
  8.     set the visible of sprite x to 0
  9.   end repeat
  10.   case Y of
  11.     0:
  12.       nothing()
  13.     6:
  14.       set the visible of sprite Y to 1
  15.     7:
  16.       set the visible of sprite Y to 1
  17.     8:
  18.       set the visible of sprite Y to 1
  19.   end case
  20.   go(ParLa)
  21. end
  22.